home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 003 / dflow.arc / CUSTPRIN.PRG < prev    next >
Encoding:
Text File  |  1985-04-03  |  405 b   |  22 lines

  1. clear
  2. store t to working
  3. do while working
  4. store 0 to recnum
  5. @ 10,20 say "record number" get recnum
  6. read
  7. if recnum < 1
  8.     return
  9.    else
  10.      goto bottom
  11.      If recnum > recno()
  12.      @ 12,20 say "last record is"
  13.      @ 12,35 say recno()
  14.      @ 14,20 say "Press return if you don't want to print"
  15.    else
  16.     goto recnum
  17.     do printer
  18.     store f to working
  19.   endif
  20. endif
  21. enddo
  22. P